Conditions | 1 |
Paths | 1 |
Total Lines | 4 |
Lines | 4 |
Ratio | 100 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | View Code Duplication | var RateLimit = /** @class */ (function () { |
|
11 | RateLimit.prototype.reset = function () { |
||
12 | this.currentCalls = this.originCalls; |
||
13 | this.currentTime = this.originTime; |
||
14 | }; |
||
15 | RateLimit.prototype.decrementCall = function () { this.currentCalls--; }; |
||
47 | //# sourceMappingURL=ratelimit.js.map |